home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Embed / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-08-16  |  851 b   |  39 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Menus.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef DEFINES_K
  15. #include "Defines.k"
  16. #endif
  17.  
  18. #ifndef FWMENUS_FR
  19. #include "FWMenus.fr"
  20. #endif
  21.  
  22. //----------------------------------------------------------------------------
  23. //    Menus
  24. //----------------------------------------------------------------------------
  25.  
  26. resource FW_RMenuBar(kMenuBar)
  27. {
  28.     {
  29.         FW_RPullDownMenu
  30.         (
  31.             "Embed"
  32.             {
  33.                 FW_RTextItem(cOneFacet, FW_kNoKeyEquivalent, "One Facet"),
  34.                 FW_RTextItem(cFourFacets, FW_kNoKeyEquivalent, "Four Facets")
  35.             }
  36.         )
  37.     }
  38. };
  39.